/* Import Elegant Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* SEO Section */
.seo-section {
    width: 100%;
    background: linear-gradient(135deg, #f4f7ff, #ffffff);
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.seo-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Section Title */
.seo-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.seo-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #19C0FF;
    border-radius: 2px;
}

/* Subtitle */
.seo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Additional Text */
.seo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #19C0FF;
    margin-top: 20px;
}

/* Scroll Animation */
.show .seo-container {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-section {
        padding: 60px 5%;
    }

    .seo-title {
        font-size: 34px;
    }

    .seo-title::after {
        width: 50px;
    }

    .seo-text {
        font-size: 18px;
    }

    .seo-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .seo-title {
        font-size: 30px;
    }

    .seo-subtitle {
        font-size: 15px;
    }
}



/* New section css */


/* Import Modern Fonts */


/* Section Styling */
.why-section {
    width: 100%;
    background: linear-gradient(135deg, #f4f7ff, #ffffff);
    padding: 16px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.why-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Section Title */
.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #19C0FF;
    border-radius: 2px;
}

/* Text */
.why-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 200;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.why-text1 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #19C0FF;
    margin: 25px 0;
}
/* Call-to-Action Button */
.why-button {
    background: #19C0FF;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 115, 230, 0.3);
    display: inline-block;
    margin-top: 15px;
}

.why-button:hover {
    background: #19C0FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 230, 0.4);
}

/* Scroll Animation */
.show .why-container {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-section {
        padding: 60px 5%;
    }

    .why-title {
        font-size: 34px;
    }

    .why-title::after {
        width: 50px;
    }

    .why-text {
        font-size: 16px;
    }

    .why-button {
        font-size: 14px;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .why-title {
        font-size: 30px;
    }

    .why-text {
        font-size: 15px;
    }
}
